home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 1 / QRZ Ham Radio Callsign Database - December 1993.iso / ucsd / drivers.arc / READ.ME < prev    next >
Encoding:
Text File  |  1988-10-28  |  2.3 KB  |  51 lines

  1. Enclosed you will find
  2.  
  3. 3C501.ASM     Device dependent 3COM 3C501 code.
  4. 3C501.COM     Executable for a packet driver for the 3COM 3C501 code.
  5. DEFS.ASM      Definitions and macros.
  6. GENERIC.ASM   Device dependent generic code.
  7. HEAD.ASM      Resident device independent generic code.
  8. MAKEFILE      Makefile.  Uses tlink, can be modified to use link.
  9. NI5010.ASM    Device dependent Interlan NI5010 code.
  10. NI5010.COM    Executable for a packet driver for the Interlan NI5010.
  11. NI5210.ASM    Device dependent MICOM-Interlan NI5210 code.
  12. NI5210.COM    Executable for a packet driver for the MICOM-Interlan NI5210.
  13. PACKETQA.TXT  Questions from R. Nelson and Answers from jbvb@vax.ftp.com
  14. PACKET_D.TXT  Packet driver spec version 1.05
  15. READ.ME       This file.
  16. SLIP8250.ASM  Device dependent SLIP driver using IBM-PC 8250.
  17. SLIP8250.COM  Executable for a SLIP packet driver for the IBM-PC 8250.
  18. TAIL.ASM      Non-resident device independent generic code.
  19.  
  20. Changes from version 1 to 2 of the drivers:
  21.  
  22. !!  Arguments are now in decimal by default  !!  Use a 0x prefix for hex.
  23.  
  24. DEFS.ASM created.
  25. The loadport macro improved.
  26. SLIP8250 driver added, thanks for a C version from Phil Karn.
  27.      I've tried to put some 16550 support in, but I don't have one to
  28.      test it with.  The documentation insists the TBRE goes low when
  29.      the transmit buffer is not empty, while it makes sense for it to stay
  30.      high while the buffer is not full.  I suspect the documentation is
  31.      wrong.
  32. NI5010 driver added, thanks for a C version from Bill Doster.
  33. WD8003 driver added, by Bob Clements.
  34. Loadport macro added to WD8003 driver by Russell Nelson.
  35. Numeric arguments may now be specified in octal, decimal or hex, using the
  36.      C notation.
  37. Numeric arguments can now use up to 32 bits.
  38. Source files reformatted.
  39.  
  40. Changes from version 2 to 3 of the drivers:
  41.  
  42. SLIP8250 can now be one of three classes: SLIP, AX.25, and KISS.
  43. Tail.asm now checks for a packet driver already at the given interrupt.
  44. Tail.asm now echoes its arguments in hex and decimal.
  45. Tail.asm will close stdout so that a file handle won't be used up in
  46.      case the user redirects stdout to NUL.
  47. Head.asm now supports driver termination.
  48. Termin.com added to terminate a driver.
  49. Head.asm now does a stack swap to avoid pushing too many things when
  50.      interrupting MS-LOSS.
  51.